home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / testprog.cpp < prev    next >
C/C++ Source or Header  |  1999-03-17  |  7KB  |  247 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: testprog.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer 
  8. // File Creation Date: 02/07/1997 
  9. // Date Last Modified: 03/17/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. This is test program for the Disk-based binary search tree.
  16.  
  17. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  18. All those who put this code or its derivatives in a commercial
  19. product MUST mention this copyright in their documentation for
  20. users of the products in which this code or its derivative
  21. classes are used. Otherwise, you have the freedom to redistribute
  22. verbatim copies of this source code, adapt it to your specific
  23. needs, or improve the code and release your improvements to the
  24. public provided that the modified files carry prominent notices
  25. stating that you changed the files and the date of any change.
  26.  
  27. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  28. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  29. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  30. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  31. CORRECTION.
  32. */
  33. // ----------------------------------------------------------- // 
  34. #include <iostream.h>
  35. #include <iomanip.h>
  36. #include "dtree.h"
  37. #include "cacstats.h"
  38.  
  39. void ListInOrder(CachePointer Tree) // For test purposes only
  40. {
  41.   CachePointer l(Tree); // Using Tree to get cache
  42.   while((__LWORD__)Tree) {
  43.     l = Tree->Left;
  44.     Tree.Release(); // Otherwise cache might fill up
  45.     ListInOrder(l);
  46.     cout << "FAU: " << (__LWORD__)Tree << ' ' << "Data: "
  47.      << Tree->Data << endl;
  48.     Tree = Tree->Right;
  49.   }
  50. }
  51.  
  52. void pause()
  53. {
  54.   cout << endl;
  55.   cout << "Press enter to continue..." << endl;
  56.   cin.get();
  57. }
  58.  
  59. int main()
  60. {
  61.   // (D)isk-based binary search (T)ree (I)ndex file extension
  62.   char *FName = "testfile.dtx";
  63.   
  64.   cout << "Creating a disk-based tree..." << endl;
  65.   DTree dtree(5);
  66.   VBDFilePtr fp(new VBDFile); // Must ALWAYS create dynamically
  67.   // Create the file with room for one tree header in the static area
  68.   fp->Create(FName, sizeof(TreeHeader));
  69.   dtree.Connect(fp, 1, sizeof(FileHeader));
  70.  
  71.   int ex;
  72.  
  73.   FKey a("DOG");
  74.   FKey b("CAT");
  75.   FKey c("COW");
  76.   FKey d("MOUSE");
  77.   FKey e("BIRD");
  78.   FKey f("PIG");
  79.   FKey g("HORSE");
  80.   FKey h("LION");
  81.   FKey i("SNAKE");
  82.   FKey j("FISH");
  83.  
  84.   FKey k("THE QUICK BROWN FOX");
  85.  
  86.   CachePointer a1 = dtree.Add(a, ex);
  87.   cout << "Adding " << a << " to database at FAU " << __LWORD__(a1) << endl;
  88.  
  89.   CachePointer a2 = dtree.Add(b, ex);
  90.   cout << "Adding " << b << " to database at FAU " << __LWORD__(a2) << endl;
  91.   
  92.   CachePointer a3 = dtree.Add(c, ex);
  93.   cout << "Adding " << c << " to database at FAU " << __LWORD__(a3) << endl;
  94.   
  95.   CachePointer a4 = dtree.Add(d, ex);
  96.   cout << "Adding " << d << " to database at FAU " << __LWORD__(a4) << endl;
  97.  
  98.   CachePointer a5 = dtree.Add(e, ex);
  99.   cout << "Adding " << e << " to database at FAU " << __LWORD__(a5) << endl;
  100.   
  101.   CachePointer a6 = dtree.Add(f, ex);
  102.   cout << "Adding " << f << " to database at FAU " << __LWORD__(a6) << endl;
  103.   
  104.   CachePointer a7 = dtree.Add(g, ex);
  105.   cout << "Adding " << g << " to database at FAU " << __LWORD__(a7) << endl;
  106.  
  107.   CachePointer a8 = dtree.Add(h, ex);
  108.   cout << "Adding " << h << " to database at FAU " << __LWORD__(a8) << endl;
  109.  
  110.   CachePointer a9 = dtree.Add(i, ex);
  111.   cout << "Adding " << i << " to database at FAU " << __LWORD__(a9) << endl;
  112.   
  113.   CachePointer a10 = dtree.Add(j, ex);
  114.   cout << "Adding " << j << " to database at FAU " << __LWORD__(a10) << endl;
  115.   
  116.   pause();
  117.   
  118.   cout << "Tree data: " << endl;
  119.   ListInOrder(dtree.Root); 
  120.  
  121.   cout << endl;
  122.   cout << "Cache report: " << endl;
  123.   Report(dtree.cache, 0);
  124.   
  125.   pause();
  126.  
  127.   cout << "Changing persistent FKey object " << j << " to " << k << endl;
  128.   dtree.Change(j, k);
  129.  
  130.   cout << endl;
  131.   cout << "Tree data: " << endl;
  132.   ListInOrder(dtree.Root); 
  133.   
  134.   pause();
  135.  
  136.   cout << "Deleting item " << a << " from the database..." << endl;
  137.   dtree.Delete(a);
  138.  
  139.   cout << "Deleting item " << e << " from the database..." << endl;
  140.   dtree.Delete(e);
  141.  
  142.   cout << "Deleting item " << k << " from the database..." << endl;
  143.   dtree.Delete(k);
  144.   
  145.   cout << endl;
  146.   cout << "Tree data: " << endl;
  147.   ListInOrder(dtree.Root); 
  148.  
  149.   pause();
  150.   
  151.   cout << "Closing and re-opening the file..." << endl;
  152.   dtree.Disconnect(); // Avoid a dangling cache pointer exception
  153.   fp->Open(FName, VBDFile::READONLY); // Open() closes first
  154.   dtree.Connect(fp, 0, sizeof(FileHeader)); // 0 means open
  155.  
  156.   pause();
  157.  
  158.   cout << "Tree data: " << endl;
  159.   ListInOrder(dtree.Root); 
  160.  
  161.   pause();
  162.  
  163.   cout << "Searching database for item " << c << endl;
  164.   CachePointer cp = dtree.Search(c);
  165.   if((__LWORD__)cp) cout << "Found item " << c << " at FAU "
  166.              << __LWORD__(cp) << endl;
  167.  
  168.   pause();
  169.   
  170.   cout << "Creating two disk-based trees connected to the same file..."
  171.        << endl;
  172.  
  173.   DTree dtree1(5);
  174.   DTree dtree2(5);
  175.   VBDFilePtr myfile(new VBDFile); // Must ALWAYS create dynamically
  176.  
  177.   // Create the file with room for two tree headers
  178.   // in the static area
  179.   myfile->Create(FName, 2*sizeof(TreeHeader));
  180.  
  181.   // Connect the first tree, create the tree, with a header
  182.   // at the location right after the VBDFileHeader.
  183.   dtree1.Connect(myfile, 1, sizeof(FileHeader));
  184.  
  185.   // Connect the second tree, create the tree, with a header
  186.   // at the location right after the first tree's header.
  187.   dtree2.Connect(myfile, 1, sizeof(FileHeader)+sizeof(TreeHeader));
  188.  
  189.   cout << "Adding to both trees at same time..." << endl;
  190.   dtree1.Add(a, ex);
  191.   dtree2.Add(b, ex);
  192.   dtree1.Add(c, ex);
  193.   dtree2.Add(d, ex);
  194.   dtree1.Add(e, ex);
  195.   dtree2.Add(f, ex); 
  196.   dtree1.Add(g, ex);
  197.   dtree2.Add(h, ex);
  198.   dtree1.Add(i, ex);
  199.   dtree2.Add(j, ex);
  200.  
  201.   cout << endl;
  202.   cout << "Tree #1's cache:" << endl;
  203.   Report(dtree1.cache, 0);
  204.  
  205.   cout << endl;
  206.   cout << "Tree #2's cache:" << endl;
  207.   Report(dtree2.cache, 0);
  208.  
  209.   pause();
  210.  
  211.   cout << "Closing and re-opening the file..." << endl;
  212.  
  213.   dtree1.Disconnect(); // Avoid a dangling cache pointer exception
  214.   dtree2.Disconnect(); // Avoid a dangling cache pointer exception
  215.  
  216.   myfile->Open(FName, VBDFile::READONLY); // Open() closes first
  217.  
  218.   dtree1.Connect(myfile, 0, sizeof(FileHeader)); // 0 means open
  219.   dtree2.Connect(myfile, 0, sizeof(FileHeader)+sizeof(TreeHeader));
  220.  
  221.   pause();
  222.   
  223.   cout << "Tree #1's data:" << endl;
  224.   ListInOrder(dtree1.Root); 
  225.  
  226.   cout << endl;
  227.   cout << "Tree #2's data:" << endl;
  228.   ListInOrder(dtree2.Root); 
  229.  
  230.   pause();
  231.   
  232.   cout << "Tree #1's cache:" << endl;
  233.   Report(dtree1.cache, 0);
  234.  
  235.   cout << endl;
  236.   cout << "Tree #2's cache:" << endl;
  237.   Report(dtree2.cache, 0);
  238.  
  239.   return 0;
  240. }
  241. // ----------------------------------------------------------- //
  242. // ------------------------------- //
  243. // --------- End of File --------- //
  244. // ------------------------------- //
  245.  
  246.  
  247.